InviteUserActivity

open class InviteUserActivity : AppCompatActivity

Activity displays a list of users and provide a current user to invite other users.

Functions

Link copied to clipboard
protected open fun createFragment(): Fragment
It will be called when the InviteUserActivity is being created.
Link copied to clipboard
open fun newIntent(@NonNull context: Context, @NonNull channelUrl: String): Intent
open fun newIntent(    @NonNull context: Context,     @NonNull channelUrl: String,     @StyleRes themeResId: Int): Intent
Create an intent for a InviteUserActivity.
Link copied to clipboard
open fun newIntentFromCustomActivity(    @NonNull context: Context,     @NonNull cls: Class<out InviteUserActivity>,     @NonNull channelUrl: String): Intent
open fun newIntentFromCustomActivity(    @NonNull context: Context,     @NonNull cls: Class<out InviteUserActivity>,     @NonNull channelUrl: String,     @StyleRes themeResId: Int): Intent
Create an intent for a custom activity.
Link copied to clipboard
protected open fun onCreate(@Nullable savedInstanceState: Bundle)